RINSTR
Similar to INSTR, RINSTR will locate the position of either a words or a character within a string. However, it will start the search from the right of the string.
ARGUMENTS:
* Search = The string that will be searched through.
* Pattern = The string or character to find
* Start = The position to start the search (from the right)
optional:
* Case Flag = If set to 1 the search will be case sensitive
RETURNS:
The start position of the pattern (from the right) or 0 if the pattern wasn't found
SYNTAX
Return Integer=RINSTR(Search,Pattern,Start [,Case Flag])
RELATED INFO
View String Operations Index
View STYX Index
View STYX Main File
